﻿@charset "utf-8";

/*初始化*/

* {
	padding: 0;
	margin: 0;
	outline: none;
	-webkit-tap-highlight-color: rgba(0, 0, 0, 0);
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}

html {
	font-size: calc(100vw/19.2);
}


html,
body {
	width: 100%;
	height: auto;
	min-height: 100%;
	-webkit-text-size-adjust: 100%;
	-ms-text-size-adjust: 100%;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}

body {
	font-family: 'siyuanheiti', 'PingFang SC', 'Microsoft YaHei', 'Microsoft YaHei UI', 'Source Han Serif CN', 'SimSun', 'SimHei', 'Arial';
	font-size: 16px;
	line-height: 1.5;
	color: #333;
	background: #fff;
}

img {
	border: 0;
	vertical-align: top;
}

li {
	list-style: none;
}

div,
ul,
ol,
li,
p,
h1,
h2,
h3,
h4,
h5,
h6 {
	margin: 0;
}

a,
a:hover,
a:focus {
	text-decoration: none;
}

input,
button {
	-webkit-appearance: none;
	border-radius: 0;
}

textarea {
	resize: none;
	overflow: auto;
}

input,
button,
textarea,
select {
	border: 0;
	font-family: inherit;
	font-size: inherit;
	color: inherit;
	background: transparent;
}

img {
	max-width: 100%;
}

/* placeholder修改 */

input::-webkit-input-placeholder,
textarea::-webkit-input-placeholder {
	/* WebKit, Blink, Edge */
	color: #fff !important;
}

input:-moz-placeholder,
textarea:-moz-placeholder {
	/* Mozilla Firefox 4 to 18 */
	color: #fff !important;
	opacity: 1;
}

input::-moz-placeholder,
textarea::-moz-placeholder {
	/* Mozilla Firefox 19+ */
	color: #fff !important;
	opacity: 1;
}

input::-ms-input-placeholder,
textarea::-ms-input-placeholder {
	/* Internet Explorer 10-11 */
	color: #fff !important;
}

select {
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
	white-space: nowrap;
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
}

select::-ms-expand {
	display: none;
}

/*公共样式*/
.c-clear {
	zoom: 1;
}

.c-clear:after {
	content: '';
	display: block;
	clear: both;
}

.c-fl {
	float: left;
}

.c-fr {
	float: right;
}

.tc {
	text-align: center;
}

.c-container {
	position: relative;
	margin: 0 auto;
	width: 72.917666%;
}

.flexBox {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}

.bgf5 {
	background: #f5f5f5;
}

.ls0{letter-spacing:0px ! important;}

body.c-open {
	position: fixed;
	left: 0;
	width: 100%;
}

.c-common-btn1 {
	position: relative;
	display: inline-block;
	border: 2px solid #fff;
}

.c-common-btn1::before {
	content: "";
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
	position: absolute;
	top: -2px;
	left: -2px;
	width: 0;
	height: -webkit-calc(100% + 4px);
	height: calc(100% + 4px);
	background: #fff;
	transition: .5s;
}

.c-common-btn1 div {
	position: relative;
	z-index: 2;
	font-size: 14px;
	line-height: 56px;
	padding: 0 72px 0 40px;
	background: url(../images/jt1.png)no-repeat right 40px center / 22px;
	color: #fff;
	transition: all .5s;
}

.c-common-btn1:hover div {
	color: #555;
	
}

.c-common-btn1:hover::before {
	width: -webkit-calc(100% + 4px);
	width: calc(100% + 4px);
}

.c-common-btn1.c-dt {
	border-color: #666;
	background-color: #666;
}

.c-common-btn1.c-dt::before {
	background: #000;
}

.c-common-btn1.c-dt:hover div {
	color: #fff;
	background-image: url(../images/jt1.png);
}


/* 动画 */

@-webkit-keyframes jump {
	0% {
		opacity: 1;
		top: -10px;
	}

	50% {
		opacity: 1;
	}

	100% {
		opacity: 0;
		top: 11px;
	}
}

@keyframes jump {
	0% {
		opacity: 1;
		top: -10px;
	}

	50% {
		opacity: 1;
	}

	100% {
		opacity: 0;
		top: 11px;
	}
}


@keyframes warn {
	0% {
		transform: scale(1);
		opacity: 0.0;
	}

	25% {
		transform: scale(1);
		opacity: 0.1;
	}

	50% {
		transform: scale(1.2);
		opacity: 0.3;
	}

	75% {
		transform: scale(1.4);
		opacity: 0.5;
	}

	100% {
		transform: scale(1.6);
		opacity: 0.0;
	}
}

@-webkit-keyframes "warn" {
	0% {
		-webkit-transform: scale(1);
		opacity: 0.0;
	}

	25% {
		-webkit-transform: scale(1);
		opacity: 0.1;
	}

	50% {
		-webkit-transform: scale(1.2);
		opacity: 0.3;
	}

	75% {
		-webkit-transform: scale(1.4);
		opacity: 0.5;
	}

	100% {
		-webkit-transform: scale(1.6);
		opacity: 0.0;
	}
}

@-webkit-keyframes jump2 {
	0% {
		transform: translateY(0)
	}

	50% {
		transform: translateY(-20px)
	}

	100% {
		transform: translateY(0)
	}
}

@keyframes jump2 {
	0% {
		transform: translateY(0)
	}

	50% {
		transform: translateY(-20px)
	}

	100% {
		transform: translateY(0)
	}
}



/*字体*/
@font-face {
	font-family: "siyuanheiti";
	/* 这个名字可以自己定义 */
	src: url("../fonts/sourcehansans.eot");
	/* IE9 Compat Modes */
	/*这里以及下面的src后面的地址填的都是自己本地的相对地址*/
	src: url("../fonts/sourcehansans.eot?#iefix") format("embedded-opentype"),
		/* IE6-IE8 */
		url("../fonts/sourcehansans.woff") format("woff"),
		/* Modern Browsers */
		url("../fonts/sourcehansans.ttf") format("truetype"),
		/* Safari, Android, iOS */
		url("../fonts/sourcehansans.svg#YourWebFontName") format("svg");
	/* Legacy iOS */
	font-style: normal;

}

@font-face {
	font-family: "futurabt";
	src: url("../fonts/futurabt-medium.otf") format("opentype");
}

/* 占位标签，设置导航样式 */
#c-placeholder {
	height: 90px;
}



/*顶部*/

#c-header {
	position: fixed;
	top: 0;
	left: 0;
	z-index: 900;
	width: 100%;
	line-height: 90px;
	text-align: center;
	color: #fff;
	transition: all 0.5s;
}

#c-header::before {
	content: "";
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	border-bottom: 1px solid rgba(255, 255, 255, .2);
	transition: .5s;
}

#c-header.c-style2::before {
	/* border-bottom: 1px solid #ececec; */
}

#c-header a {
	color: #fff;
	transition: all 0.5s;
}

#c-header.c-head-move {
	top: -100px;
}

#c-header.c-style2 {
	color: #333;
	background: #fff;
	border: 0;
}

#c-header.c-style2 a {
	color: #777;
}

#c-header>.c-container {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 0 0 0 50px;
	width: 100%;
}

#c-header .c-right-box {
	display: flex;
	align-items: center;
}


/*顶部logo*/

#c-header .c-logo {
	display: flex;
	align-items: center;
}

#c-header .c-logo .c-img-box {
	display: flex;
	align-items: center;
}

#c-header .c-logo img {
	height: 48px;
}

#c-header .c-logo img:nth-child(2),
#c-header.c-style2 .c-logo img:nth-child(1) {
	display: none;
}

#c-header.c-style2 .c-logo img:nth-child(2) {
	display: inline-block;
}


/*顶部pc导航*/

#c-header .c-nav {
	display: flex;
	align-items: center;
	font-size: 18px;
}

#c-header .c-nav>li {
	position: relative;
	margin-right: 50px;
}

#c-header .c-nav li a {
	position: relative;
	display: block;
	-webkit-transition: all 0.5s;
	transition: all 0.5s;
}

#c-header .c-nav>li>a:before {
	content: "";
	position: absolute;
	bottom: 0;
	left: 50%;
	width: 0;
	height: 2px;
	background: #000;
	transition: .5s;
}

#c-header .c-nav li a i {
	margin-left: 8px;
	font-size: 20px;
}

#c-header .c-nav ul {
	position: absolute;
	top: 99%;
	left: 50%;
	display: none;
	width: 150px;
	line-height: 40px;
	background: #fff;
	box-shadow: 0 2px 10px rgba(0, 0, 0, .1);
	-webkit-transform: translateX(-50%);
	transform: translateX(-50%);

}

#c-header .c-nav ul li {
	border-bottom: 1px solid #eee;
}

#c-header .c-nav ul li:last-child {
	border: 0;
}

#c-header .c-nav ul a {
	color: #777777;
}

#c-header.c-style2 .c-nav li.on>a,
#c-header .c-nav li:hover>a {
	color: #000
}

#c-header.c-style2 .c-nav li.on>a::before,
#c-header .c-nav>li:hover>a::before {
	left: 0;
	width: 100%;
}


/*顶部移动端导航*/

#c-header .c-nav2 {
	position: absolute;
	top: 60px;
	left: 0;
	width: 100%;
	height: 0;
	font-size: 14px;
	line-height: 50px;
	background: #fff;
	overflow-y: auto;
	transition: all 0.5s;
}

.c-open #c-header .c-nav2 {
	height: calc(100vh - 60px);
	height: -webkit-calc(100vh - 60px);
}

#c-header .c-nav2 a {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin: 0 20px;
	border-bottom: 1px solid #f1f1f1;
	color: #333;
	-webkit-transition: all 0.3s;
	transition: all 0.3s;
}

#c-header .c-nav2>li:first-child {
	border-top: 1px solid #f1f1f1;
}

#c-header .c-nav2 li:hover>a,
#c-header .c-nav2 li.active>a {
	color: #0042ad
}

#c-header .c-nav2 li a i {
	font-size: 20px;
}

#c-header .c-nav2 li ul {
	display: none;
}

#c-header .c-nav2 li ul a {
	padding-left: 15px;
}

#c-header .c-nav2 li li li a {
	padding-left: 30px;
}


/*导航开关*/

#c-header .c-menu {
	padding: 34px 30px;
	width: 80px;
	height: 80px;
	cursor: pointer;
	transition: .5s;
	display: none;
}

#c-header .c-menu:hover {
	background: #0042ad;
}

#c-header .c-menu i {
	position: relative;
	display: block;
	height: 2px;
	background: #fff;
	-webkit-transition: all 0.3s;
	transition: all 0.3s;
}

#c-header.c-style2 .c-menu i {
	background: #555555;
}

#c-header .c-menu:hover i {
	background: #fff;
}

#c-header .c-menu i:nth-child(2) {
	margin: 6px 0;
}


/* 顶部功能区 */

#c-header .c-gn {
	display: flex;
	align-items: center;
	position: relative;
	padding: 0 30px;
}

#c-header .c-gn:after {
	content: "";
	width: 1px;
	height: 20%;
	background: #fff;
	position: absolute;
	left: 0;
	top: 40%
}

#c-header .c-gn .search-box {
	width: 36px;
	height: 36px;
	border-radius: 50%;

	line-height: 36px;
	margin-left: 10px
}

#c-header.c-style2 .search-box {
	background: #e0e0e0;
}




/* 搜索框 */
.header-search-wrap {
	position: absolute;
	z-index: 901;
	left: 50%;
	top: 25px;
	-webkit-transform: scale(0);
	-ms-transform: scale(0);
	transform: scale(0);
	opacity: 0;
	width: 600px;
	height: 40px;
	margin-left: -300px;
	border: 1px solid rgba(0, 0, 0, 0.2);
	color: #666;
	line-height: 40px;
	transition: all 0.5s;
	background: #fff;
}

.header-search-wrap .submit {
	position: absolute;
	top: 0;
	left: 0;
	z-index: 5;
	width: 36px;
	height: 40px;
	background: url(../images/ser1.png) no-repeat center;
	background-size: 20px;
	border: none;
	z-index: 3;
	box-sizing: border-box;
}

.header-search-wrap .ser-input {
	width: 100%;
	height: 40px;
	position: relative;
	border: none;
	background: none;
	box-sizing: border-box;
	padding-left: 40px;
}

.header-search-wrap .search-close {
	position: absolute;
	display: block;
	right: -60px;
	top: 50%;
	margin-top: -20px;
	width: 40px;
	height: 40px;
	background: url(../images/close2.png) no-repeat center;
	background-size: 30px;
	cursor: pointer;
	transition-duration: .5s;
}

.header-search-wrap .search-close:hover {
	transform: rotate(90deg);
}

.hide1 {
	-webkit-transform: scale(0) !important;
	-ms-transform: scale(0) !important;
	transform: scale(0) !important;
	opacity: 0 !important;
}

.show1 {
	z-index: 8;
	-webkit-transform: scale(1);
	-ms-transform: scale(1);
	transform: scale(1);
	opacity: 1;
}

/* 弹窗导航 */

#c-fixed-nav {
	position: fixed;
	top: 0;
	left: 0;
	z-index: 910;
	width: 100%;
	height: 0;
	overflow: hidden;
	transition: all .5s;
}

#c-fixed-nav.on {
	height: 100%;
}

#c-fixed-nav .c-main-wrap {
	position: relative;
	top: 0;
	left: 0;
	width: 100%;
	height: 100vh;
	background: url(../images/tcdh-bg.jpg)no-repeat center bottom / cover;
	transition: all .5s;
}

#c-fixed-nav .c-top {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding-left: 50px;
	border-bottom: 1px solid #000;
}

#c-fixed-nav .c-top .c-logo2 img {
	height: 38px;
}

#c-fixed-nav .c-menu {
	padding: 34px 30px;
	width: 80px;
	height: 80px;
	cursor: pointer;
	transition: .5s;
	background: #000;
}

#c-fixed-nav .c-menu i {
	position: relative;
	display: block;
	height: 2px;
	background: #fff;
	-webkit-transition: all 0.3s;
	transition: all 0.3s;
}

#c-fixed-nav .c-menu i:nth-child(1) {
	margin-top: 9px;
	-webkit-transform: rotate(-45deg);
	transform: rotate(-45deg);
}

#c-fixed-nav .c-menu i:nth-child(2) {
	margin-top: -3px;
	-webkit-transform: rotate(45deg);
	transform: rotate(45deg);
}

#c-fixed-nav .c-bottom {
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 40px 0;
	height: -webkit-calc(100vh - 91px);
	height: calc(100vh - 91px);
	color: #fff;
}

#c-fixed-nav .c-container {
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
}

#c-fixed-nav .c-left {
	width: 57%;
}

#c-fixed-nav .c-right {
	width: 30%;
}



#c-fixed-nav .c-right .c-nav {
	display: flex;
	flex-wrap: wrap;
	align-items: flex-start;
	margin: 0 -10px -40px;
	padding-top: 45px;
}

#c-fixed-nav .c-right .c-nav li {
	margin-bottom: 30px;
	padding: 0 10px;
	width: 50%;
	font-size: 18px;
	line-height: 32px;
}

#c-fixed-nav .c-right .c-nav a {
	opacity: .6;
	color: #fff;
	transition: .5s;
}

#c-fixed-nav .c-right .c-nav a:hover {
	opacity: 1;
}


/* 首页banner */

.c-banner1 {
	background: #fff;
}
.c-banner1 .computer{display:block}

.c-banner1 .swiper-pagination-bullet{background:none;border:1px solid #fff;width:10px;height:10px;}
.c-banner1 .swiper-pagination-bullet-active{background:#fff}
.c-banner1 .phone{display:none}
.c-banner1 .c-sb {
	position: absolute;
	bottom: 50px;
	left: 50%;
	z-index: 10;
	text-align: center;
	color: #fff;
	-webkit-transform: translateX(-50%);
	transform: translateX(-50%);
	cursor: pointer;
}

.c-banner1 .c-sb .c-wrap {
	position: relative;
	margin: 0 auto;
	width: 30px;
	height: 38px;
	border: 2px solid #fff;
	border-radius: 15px;
	overflow: hidden;
}

.c-banner1 .c-sb .c-wrap .c-line {
	position: absolute;
	top: 12px;
	left: 12px;
	width: 2px;
	height: 10px;
	background: #fff;
	animation: jump 1.5s linear infinite;
	-webkit-animation: jump 1.5s linear infinite;
}

.c-banner1 .c-sb .c-text {
	padding-top: 5px;
	font-size: 12px;
	line-height: 22px;
}

.c-banner1 .swiper-slide {
	
}

.c-banner1 .slide1 {

	width: 100%;
	

}

.c-banner1 .c-mb {
	display: none;
	position: absolute;
	top: 0;
	left: 0;
	z-index: 2;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.c-banner1 .c-mask {
	position: absolute;
	position: absolute;
	top: 0;
	left: 0;
	z-index: 3;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, .3);
}

.c-banner1 .c-text-box {
	position: absolute;
	top: 50%;
	left: 0;
	z-index: 4;
	width: 100%;
	color: #fff;
	-webkit-transform: translateY(-50%);
	transform: translateY(-50%);
	text-align: center;
}

.c-banner1 .c-text-box .c-num {
	display: flex;
	align-items: flex-start;
	justify-content: center;
	margin-bottom: 35px;
}

.c-banner1 .c-text-box .c-num b {
	font-size: 80px;
	font-family: "futurabt";
}

.c-banner1 .c-text-box .c-num p {
	margin-left: 10px;
	font-size: 20px;
	line-height: 1;
}

.c-banner1 .c-text-box .c-title {
	font-size: 48px;
	line-height: 58px;
	font-weight: bold;
}

.c-banner1 .c-text-box .c-text {
	margin-top: 20px;
	margin-bottom: 75px;
	font-size: 20px;
	line-height: 30px;
}

/* 首页宣传视频 */
.c-video {
	width: 100%;
	position: relative;
	background: url(../images/s_01.jpg) no-repeat center;
	background-size: cover;
	padding: 50px 0;
	overflow: hidden;
}

.c-video .c-common-title {
	text-align: center;
	position: relative;
	z-index: 2
}

.c-video .c-title {
	font-size: 35px;
	line-height: 48px;
	letter-spacing: 5px;
	margin-bottom: 10px;
}

.c-video .c-text {
	font-size: 22px;
	margin-bottom: 10px;
}

.c-video .more,#c-coverage .more {
	font-size: 20px;
	color: #000;
	position: relative;
	padding-bottom: 5px;
}

.c-video .more:after,#c-coverage .more:after {
	width: 0%;
	content: "";
	height: 2px;
	background: #333;
	left: 0;
	bottom: 0;
	position: absolute;
	transition: all 1s;
	-webkit-transition: all 1s;
}

.c-video .more:hover:after,#c-coverage .more:hover:after {
	width: 100%;
}

.c-video .c-img-box {
	width:80%;
	margin:0 auto;
	text-align: center;
	margin-top: 70px;
	position: relative;
	padding: 0 20px;
	z-index: 2
}
.c-video .c-img-box video{width:100%;}
.c-video .c-img-box .play-btn {
	width: 94px;
	height: 94px;
	position: absolute;
	left: 50%;
	top: 50%;
	margin-left: -47px;
	margin-top: -47px;
	transition: all 0.6s;
	cursor: pointer;
}

.c-video .c-img-box .play-btn:hover {
	transform: scale(1.3);
}

.mask {
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.8);
	position: fixed;
	left: 0;
	top: 0;
	z-index: 999;
	display: none;
}

.videos {
	display: flex;
	position: relative;
	z-index: 1000;
	width: 900px;
	height: 100%;
	margin: 0 auto;
}

.videos video {
	width: 100%;
}

i.vclose {
	position: absolute;
	right: 1%;
	top: 1%;
	cursor: pointer;
	color: #fff;
	font-size: 30px;
}

/* 产生动画（向外扩散变大）的圆圈  */
.dot {
	position: absolute;
	left: 50%;
	bottom: 0%;
	-webkit-border-radius: 100%;
	-moz-border-radius: 100%;
	border-radius: 100%;
	z-index: 1;
	opacity: 0;
	-webkit-animation: warn 3s ease-out;
	-moz-animation: warn 3s ease-out;
	animation: warn 3s ease-out;
	-webkit-animation-iteration-count: infinite;
	-moz-animation-iteration-count: infinite;
	animation-iteration-count: infinite;
}

.dot1 {
	width: 300px;
	height: 300px;
	margin-left: -150px;
	margin-bottom: -150px;
	border: 60px solid #d4d3d8;
}

.dot2 {
	width: 500px;
	height: 500px;
	margin-left: -250px;
	margin-bottom: -200px;
	border: 60px solid #d0cfd4;
}

.dot3 {
	width: 700px;
	height: 700px;
	margin-left: -350px;
	margin-bottom: -250px;
	border: 60px solid #ceced0;
}

.dot4 {
	width: 900px;
	height: 900px;
	margin-left: -450px;
	margin-bottom: -300px;
	border: 60px solid #c5c6ca;
}

/* 解决方案 */
.c-common-title {
	margin-bottom: 50px;
}

.c-common-title .c-title {
	font-size: 26px;
	line-height: 36px;
	letter-spacing: 5px;
}

.c-common-title .c-text {
	font-size: 20px;
}

.c-solution {
	padding: 30px 0;
}

.c-solution .menu {
	width: 30%;
	float: left;
	position: relative;
	margin-top: 30px;
}

.c-solution .menu:after {
	content: "";
	position: absolute;
	left: 22px;
	top: 0;
	height: 100%;
	width: 1px;
	background: #9d9d9c;

}

.c-solution .menu li {
	padding-left: 60px;
	margin-bottom: 20px;
	position: relative;
	min-height: 55px
}

.c-solution .menu li:after {
	width: 45px;
	height: 45px;
	background: #dddddd;
	border-radius: 50%;
	content: "";
	position: absolute;
	left: 0;
	top: 0;
	font-size: 18px;
	text-align: center;
	line-height: 45px;
	z-index: 2;
	font-family: "futurabt";
}

.c-solution .menu li.on:after {
	background: #000;
	color: #fff;
}

.c-solution .menu li:nth-child(1):after {
	content: "01";
}

.c-solution .menu li:nth-child(2):after {
	content: "02";
}

.c-solution .menu li:nth-child(3):after {
	content: "03";
}

.c-solution .menu li:nth-child(4):after {
	content: "04";
}

.c-solution .menu li:nth-child(5):after {
	content: "05";
}

.c-solution .menu li h4 {
	font-size: 17px;
	line-height: 25px;
	padding: 5px 0
}

.c-solution .menu li p {
	color: #666
}

.c-solution .menu li .tip {
	background: #f0f0f0;
	width: 300px;
	padding: 10px;
	position: absolute;
	z-index: 99999;
	border-radius: 10px;
	top: 50px;
	left: 100px;
	display: none;
}

.c-solution .menu li .tip:after {
	width: 0;
	height: 0;
	border-left: 20px solid transparent;
	border-right: 20px solid transparent;
	border-bottom: 50px solid #f0f0f0;
	position: absolute;
	content: "";
	top: -15px
}

.c-solution .menu li .tip img {
	position: relative;
	z-index: 99999
}

.c-solution .menu li.on .tip {
	display: block;
}

.c-solution .menu li:last-child {
	margin-bottom: 0;
}

.c-solution .right {
	width: 55%;
	float: right;
	padding-right:10%;
}


/* 公司简介 */

#c-about2 {
	position: relative;
	border-bottom: 1px solid #e0e2e7;
	background: #eff1f5;
}

#c-about2 .c-text-box {
	padding: 90px 0;
	width: 46%;
}



#c-about2 .c-text-box .info {
	line-height: 2;
	color: #777;
	margin-bottom: 15px;
	margin-top: 15px;
}

#c-about2 .c-img-box {
	position: absolute;
	bottom: 0;
	right: 0;
	width: 54%;
	max-width: 1032px;
}

#c-about2 .c-img-box img {
	width: 100%;
}

/* 数据 */

#c-data {
	padding: 50px 0;
	background: #fff;
}

#c-data .c-list {
	display: flex;
	flex-wrap: wrap;
	align-items: flex-start;
	justify-content: space-between;
}

#c-data .c-list li {
	display: flex;
	flex-wrap: wrap;
	align-items: flex-end;
	text-align: center;
}

#c-data .c-list .c-num-move {
	font-family: "futurabt";
	font-size: 60px;
	line-height: 1;
}

#c-data .c-list .c-text {
	margin-left: 10px;
	line-height: 26px;
	color: #777;
}

#c-data.c-dt {
	background: #eff1f5;
	text-align: center;
}

#c-data.c-dt .c-list li {
	justify-content: center;
}

#c-data.c-dt .c-list .c-text {
	flex: 100%;
}

/* 首页产品 */
.c-product .swiper-slide {
	padding: 50px;
	text-align: center;
}

.c-product .c-common-title{margin-top:20px;margin-bottom:20px;}

.c-product .swiper-slide img {
	margin-bottom: 20px;
	transition: all 0.6s;
	;
}

.c-product h3 {
	color: #000;
	font-size: 18px;
	line-height: 35px;
}

.c-product p {
	color: #666
}

.c-product a:hover img {
	transform: scale(1.1);
}

/* 业务覆盖 */

#c-coverage {
	padding: 90px 0;
	background: #eff1f5;
}
#c-coverage .c-text{margin-bottom:10px;}
#c-coverage .c-img-box {
	position: relative;
	margin: 0 auto;
	max-width: 1124px;
	text-align: center;
}

#c-coverage .c-img-box>img {
	width: 100%;
}

#c-coverage .c-img-box .c-wz {
	position: absolute;
	text-align: center;
	-webkit-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
}

#c-coverage .c-img-box .c-wz1 {
	top: 43.333333%;
	left: 75.978647%;
}

#c-coverage .c-img-box .c-wz2 {
	top: 20%;
	left: 64.857651%;
}

#c-coverage .c-img-box .c-wz3 {
	top: 31.666666%;
	left: 15.569395%;
}

#c-coverage .c-img-box .c-wz4 {
	top: 42.333333%;
	left: 65.836298%;
}

#c-coverage .c-img-box .c-wz5 {
	top: 54.166666%;
	left: 51.868327%;
}

#c-coverage .c-img-box .c-wz6 {
	top: 73.333333%;
	left: 30.693950%;
}

#c-coverage .c-img-box .c-wz7 {
	top: 77.5%;
	left: 84.697508%;
}

#c-coverage .c-img-box .c-wz .c-img1 {
	position: relative;
	z-index: 2;
	width: 32px;
	animation: jump2 1.5s linear infinite;
	-webkit-animation: jump2 1.5s linear infinite;
}

#c-coverage .c-img-box .c-wz .c-img2 {
	display: block;
	margin: -8px auto 5px;
	width: 34px;
	animation: enlarge 1.5s linear infinite;
	-webkit-animation: enlarge 1.5s linear infinite;
}

#c-coverage .c-img-box .c-wz p {
	font-size: 14px;
	line-height: 24px;
	color: #484d54;
}

#c-coverage .c-img-box .c-wz1 .c-img1 {
	width: 42px;
}

#c-coverage .c-img-box .c-wz1 p {
	font-weight: bold;
}


/* 专注 */
.c-advantage {
	padding: 30px 0;
	overflow: hidden;
}

.c-advantage .c-list li {
	width: 25%;
	padding: 0 4%;
	float: left;
	text-align: center;
}

.c-advantage .c-list li h4 {
	font-size: 18px;
	line-height: 35px;
	margin: 10px 0
}

.c-advantage .c-list li p {
	font-size: 16px;
	margin-bottom:10px;
}

.c-advantage .c-list li a.more {
	color: #000;
	position: relative;
	padding-bottom: 5px;
}

.c-advantage .c-list li a.more:after {
	width: 0%;
	content: "";
	height: 2px;
	background: #333;
	left: 0;
	bottom: 0;
	position: absolute;
	transition: all 1s;
	-webkit-transition: all 1s;
}

.c-advantage .c-list li a.more:hover:after {
	width: 100%;
}

/* 表单 */
.c-zsjm {
	width: 100%;
	background: url(../images/s_02.jpg) center no-repeat;
	background-size: cover;
}

.c-zsjm .c-from {
	width: 40%;
	background: rgba(0, 0, 0, 0.5);
	padding: 30px 60px
}

.c-zsjm .c-from h3 {
	color: #fff;
	text-align: center;
	font-size: 24px;
}

.c-zsjm .c-from .c-list {}

.c-zsjm .c-from .c-list li {
	border-bottom: 1px solid #989898;
	min-height: 70px;
	line-height: 70px;
}

.c-zsjm .c-from .c-list li span {
	color: red;
	margin-right: 5px;
	;
}

.c-zsjm .c-from .c-list li:last-child {
	border-bottom: 0;
}

.c-zsjm .c-from .c-list textarea {
	width: 100%;
	color: #fff;
	line-height: 20px;
	height: 80px;
	padding: 10px 12px;
}

.c-zsjm input,
.c-zsjm select {
	width: 80%;
	color: #fff;
}

.c-zsjm select option {
	color: #000
}

.c-zsjm .btn {
	width: 170px;
	height: 50px;
	background: #323232;
	color: #fff;
	margin-top: 20px;
}

/* 标语 */

#c-gg {
	padding: 50px 0;
	background: url(../images/gg-bg.jpg)no-repeat center / cover;
}

#c-gg .c-container {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
}

#c-gg .c-title {
	width: -webkit-calc(100% - 180px);
	width: calc(100% - 180px);
	font-weight: normal;
	font-size: 34px;
	line-height: 44px;
	color: #fff;
}

#c-gg .c-title span {
	font-weight: bold;
}


/* 右侧浮窗 */

#c-right-fixed {
	display: none;
	position: fixed;
	top: 50%;
	right: 5px;
	z-index: 905;
	-webkit-transform: translateY(-50%);
	transform: translateY(-50%);
}

#c-right-fixed a {
	position: relative;
	right: 0;
	margin-bottom: 5px;
	display: flex;
	align-items: center;
	width: 70px;
	height: 70px;
	text-align: center;
	color: #777;
	background: #fff;
}

#c-right-fixed a:last-child {
	margin-bottom: 0;
}

#c-right-fixed a:nth-child(3) {
	z-index: 2;
}

#c-right-fixed .c-wrap {
	border: 1px solid #eff1f5;
	padding: 11px 0;
	width: 70px;
	height: 70px;
	flex: 0 0 70px;
	transition: all .5s;
}

#c-right-fixed .c-wrap img {
	height: 28px;
}

#c-right-fixed .c-wrap img:nth-child(2),
#c-right-fixed a:hover .c-wrap img:nth-child(1) {
	display: none;
}

#c-right-fixed a:hover .c-wrap img:nth-child(2) {
	display: inline-block;
}

#c-right-fixed .c-title {
	padding-top: 5px;
	font-size: 12px;
	line-height: 1;
}

#c-right-fixed a:last-child .c-title {
	font-family: "Arial";
	font-weight: bold;
}

#c-right-fixed .c-text {
	flex: 0 0 auto;
	width: 170px;
	font-weight: bold;
	font-size: 20px;
	line-height: 40px;
	border-left: 1px solid #1a50aa;
	color: #fff;
	transition: all .5s;
}

#c-right-fixed .c-img {
	position: absolute;
	right: -300px;
	top: -1px;
	z-index: -1;
	padding: 5px;
	width: 148px;
	border: 1px solid #eff1f5;
	background: #fff;
	transition: .5s;
	box-shadow: 0 0 50px rgba(0, 0, 0, .1);
}

#c-right-fixed .c-img::before {
	content: "";
	position: absolute;
	top: 34px;
	right: -8px;
	border-left: 8px solid #fff;
	border-top: 8px solid transparent;
	border-bottom: 8px solid transparent;
}

#c-right-fixed .c-img img {
	width: 100%;
}

#c-right-fixed .c-img .c-text2 {
	padding: 5px;
	font-size: 14px;
	line-height: 24px;
	text-align: center;
	color: #777;
}

#c-right-fixed a .c-box {
	position: absolute;
	top: 0;
	left: 0;
	padding: 11px 0;
	width: 100%;
	height: 100%;
	display: flex;
	align-items: center;
	background: #fff;
	transition: all .5s;
	overflow: hidden;
}

#c-right-fixed a:hover .c-wrap {
	color: #fff;
	border-color: #000;
	background: #000;
}

#c-right-fixed a:last-child .c-wrap {
	color: #fff;
	border-color: #000;
	background: #000;
}

#c-right-fixed a:first-child:hover .c-box {
	width: 250px;
	height: 70px;
	-webkit-transform: translateX(-180px);
	transform: translateX(-180px);
	overflow: none;
	background: #0042ad;
}

#c-right-fixed a:hover .c-img {
	right: 84px;
}



/* 底部 */

#c-footer {
	color: #fff;
	background: #1b1c1d;
}

#c-footer a {
	color: #999;
	transition: .5s;
}

#c-footer a:hover {
	color: #0042ad;
}

#c-footer .c-top-box {
	padding: 30px 0;
}

#c-footer .c-top-box .c-container {
	display: flex;
	flex-wrap: wrap;
	align-items: flex-start;
	justify-content: space-between;
}

#c-footer .c-top-box .c-title {
	margin-bottom: 10px;
	font-size: 16px;
	line-height: 26px;
}

#c-footer .c-top-box .c-list {
	display: flex;
	flex-wrap: wrap;
	align-items: flex-start;
	justify-content: space-between;
	margin-bottom: -10px;
	width: 220px;
	font-size: 14px;
	line-height: 24px;
}

#c-footer .c-top-box .c-list li {
	margin-bottom: 10px;
	font-size: 14px;
	line-height: 24px;
}

#c-footer .c-top-box .c-list li:nth-child(odd) {
	width: 90px;
}

#c-footer .c-top-box .c-text {
	margin-bottom: 44px;
	font-size: 14px;
	line-height: 24px;
	color: #999;
}

#c-footer .c-top-box .c-text:last-child {
	margin-bottom: 0;
}

#c-footer .c-top-box .c-phone {
	margin-bottom: 20px;
	font-family: "futurabt";
	font-size: 30px;
	line-height: 40px;
}

#c-footer .c-ico {
	display: flex;
	align-items: center;
	text-align: center;
}

#c-footer .c-ico li {
	margin-right: 10px;
	line-height: 20px;
}

#c-footer .c-ico img {
	display: block;
	margin-bottom: 5px;
}

#c-footer .c-weixin {
	display: none;
	position: fixed;
	top: 0;
	left: 0;
	z-index: 910;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, .4);
}

#c-footer .c-weixin .c-img-box {
	position: absolute;
	top: 50%;
	left: 50%;
	padding: 20px;
	width: 200px;
	border-radius: 5px;
	background: #fff;
	-webkit-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
}

#c-footer .c-weixin .c-img-box img {
	width: 100%;
}

#c-footer .c-weixin .c-img-box p {
	padding-top: 10px;
	font-size: 16px;
	line-height: 1;
	text-align: center;
	color: #333;
}

#c-footer .c-bottom-wrap {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	align-items: center;
	padding: 30px 0;
	border-top: 1px solid #262828;
	font-size: 14px;
	line-height: 24px;
	color: #666;
}

#c-footer .c-bottom-wrap a {
	color: #666;
}

#c-footer .c-bottom-wrap .c-copyright {
	word-wrap: break-word;
	word-break: break-all;
}

#c-footer .c-bottom-wrap .c-right {
	display: flex;
	align-items: center;
}

#c-footer .c-bottom-wrap .c-right>a {
	margin-right: 20px;
}

#c-footer .c-bottom-wrap .c-menu {
	position: relative;
	width: 140px;
	border: 1px solid #333;
	line-height: 42px;
	text-align: center;
	transition: .5s;
	cursor: pointer;
}

#c-footer .c-bottom-wrap .c-menu:hover {
	border-color: #0042ad;
	background: #0042ad;
}

#c-footer .c-bottom-wrap .c-menu .c-title {
	display: inline-block;
	vertical-align: middle;
	transition: .5s;
}

#c-footer .c-bottom-wrap .c-menu:hover .c-title {
	color: #fff;
}

#c-footer .c-bottom-wrap .c-menu .c-line {
	margin-left: 10px;
	display: inline-block;
	vertical-align: middle;
	width: 12px;
}

#c-footer .c-bottom-wrap .c-menu .c-line i {
	display: block;
	height: 1px;
	background: #666;
	transition: .5s;
}

#c-footer .c-bottom-wrap .c-menu:hover .c-line i {
	background: #fff;
}

#c-footer .c-bottom-wrap .c-menu .c-line i:nth-child(2) {
	margin: 3px 0;
}

#c-footer .c-bottom-wrap .c-list {
	display: none;
	position: absolute;
	bottom: 44px;
	left: 0;
	width: 100%;
	background: #fff;
}

#c-footer .c-bottom-wrap .c-list li {
	border-bottom: 1px solid rgba(0, 0, 0, .1);
}

#c-footer .c-bottom-wrap .c-list li a {
	display: block;
	padding: 4px 10px;
	line-height: 26px;
}

#c-footer .c-bottom-wrap a:hover {
	color: #0042ad;
}

/* 服务领域 */
.service-sector {
	padding: 40px 0
}

.service-sector li {
	background: #eff1f5;
	border-radius: 10px;
	width: 23%;
	box-shadow: 5px 5px 5px #ccc;
	text-align: center;
	padding-bottom: 20px;
	position: relative;
	float: left;
	margin-right: 2%;
}

.service-sector li img {
	border-radius: 10px;
	display: block;
	margin-bottom: 20px;
}

.service-sector li h4 {
	font-size: 18px;
}

.service-sector li .info {
	width: 100%;
	height: 0%;
	position: absolute;
	left: 0;
	bottom: 0;
	background: rgba(0, 0, 0, 0.8);
	color: rgba(255, 255, 255, 0.9);
	border-radius: 10px;
	text-align: left;
	padding: 10px;
	display: none;
	overflow: hidden;
	transition: all .5s;
	overflow-y:auto;
}

.service-sector li .info .bt {
	font-size: 16px;
	font-weight: bold;
	margin-bottom: 10px;
}

.service-sector li .info p {
	margin-top: 10px;
	line-height: 20px;
}

.service-sector li:hover .info {
	height: 100%;
	display: block;
}

.service-sector li a {
	text-decoration: underline;
}

/* 荣誉资质 */
.hono-cert {
	padding: 40px 0;
	overflow: hidden;
}

.hono-cert .c-sub-nav {
	display: flex;
	justify-content: center;
	margin-top: 20px;
}

.hono-cert .c-sub-nav li {
	margin: 0 20px;
	font-size: 18px;
	color: #666;
	position: relative;
	padding-bottom: 5px;
	cursor: pointer;
}

.hono-cert .c-sub-nav li.on {
	color: #000;
	font-weight: bold;
}

.hono-cert .c-sub-nav li:after {
	content: " ";
	width: 0px;
	height: 2px;
	background-color: #000;
	left: 0;
	bottom: 0;
	position: absolute;
	transition: all .5s;
}

.hono-cert .c-sub-nav li.on:after {
	width: 100%;
}

.hono-cert .c-list li {
	width: 23%;
	box-shadow: 5px 5px 5px #ccc;
	text-align: center;
	padding-bottom: 20px;
	position: relative;
	float: left;
	margin-right: 2%;
}

/* 发展历程 */
.course {
	width: 100%;
	background: #eff1f5;
	padding: 30px 0;
}

.course .title {
	margin: auto;
	display: block;
	font-size: 14px;
	line-height: 20px;
	padding:7px 0;
	background: #000;
	width: 120px;
	color: #fff;
	text-align: center;
}

.course .list-mains {
	padding-top: 64px;
	padding-bottom: 1px;
	position: relative;
}

.course .list-mains:before {
	position: absolute;
	display: block;
	width: 1px;
	height: 100%;
	top: 0;
	left: 50%;
	background: #cecece;
	content: "";
}

.course .list-mains .his-item {
	position: relative;
	margin-bottom: 50px;
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}

.course .list-mains .his-item:before {
	position: absolute;
	display: block;
	width: 24px;
	height: 24px;
	top: 0;
	left: 50%;
	margin-left: -12px;
	background: url(../images/cir1.png) no-repeat center;
	content: "";
}

.course .his-imgs {
	position: relative;
	width: 30%;
}

.course .his-imgs img {
	transition: all .5s;
}

.course .his-imgs img:hover {
	transform: scale(1.2);
}

.course .his-txts {
	width: 30%;
	line-height: 28px;
}

.course .his-h5 {
	font-size: 24px;
	color: #000;
	margin-bottom: 14px;
	transition-duration: .5s;
}

.course .his-dt {
	line-height: 26px;
	font-size: 14px;
}

.course .even .his-txts {
	order: -1;
}

/* 面包屑 */
.bread-crumbs {
	width: 100%;
	background: #e6e6e6;
	line-height: 60px;
}

.bread-crumbs .nav-left-a {
	position: relative;
	color: #333;
	flex: 0 0 auto;
	display: inline-block;
	transition-duration: .3s;
	padding-right: 48px;
}

.bread-crumbs .nav-left-a:before {
	position: absolute;
	bottom: -1px;
	content: "";
	display: block;
	width: 0;
	height: 2px;
	left: 0%;

	background: #000;
	transition-duration: .3s;
}

.bread-crumbs .nav-left-a:after {
	position: absolute;
	right: 24px;
	top: 50%;
	margin-top: -7px;
	content: "";
	display: inline-block;
	vertical-align: top;
	width: 1px;
	height: 14px;
	background: #ccc;
}



.bread-crumbs .nav-left-a:hover:before,
.bread-crumbs .nav-left-a.cur:before {
	width: 44px;
	left: 50%;
	margin-left: -46px;
	color: #000
}

.bread-crumbs .nav-left-a:last-child {}

.bread-crumbs .nav-left-a:last-child:after {
	opacity: 0;
	display: none;
}

.bread-crumbs .inner-nav-left,
.bread-crumbs .inner-nav-right {
	flex: 0 0 auto;
	display: inline-flex;
}

.bread-crumbs .bread-a1 {
	margin: 0 4px;
}

.bread-crumbs .bread-a {
	color: #333;
	flex: 0 0 auto;
	transition-duration: .3s;
}

.bread-crumbs .bread-s0 {
	display: inline-block;
	padding-left: 20px;
	background: url(../images/map1.png) no-repeat left center;
}

/*产品*/
.pro-search-wrap {
	padding-top: 44px;
	padding-bottom: 10px;
	justify-content: flex-end;
}

.pro-ajax-controls {
	justify-content: flex-start;
	padding-bottom: 1rem;
}

.pro-ajax-controls .pro-ajax-s0 {
	position: relative;
	color: rgba(0, 0, 0, 0.6);
	flex: 0 0 auto;
	line-height: 36px;
	transition-duration: .3s;
	padding: 0 20px;
	cursor: pointer;
	font-size: 16px;
}

.pro-ajax-controls .pro-ajax-s0:first-child {
	padding-left: 48px;
	background: url(../images/all.png) no-repeat left center;
}

.pro-ajax-controls .pro-ajax-s0:hover,
.pro-ajax-controls .pro-ajax-s0.cur {
	color: #000;
}

.pro .pro-mains {
	padding-bottom: 2.5rem;
	min-height: 34vh;
	justify-content: flex-start;
}

.pro .pro-item {
	flex: 0 0 23.8%;
	background: #fff;
	margin-right: 1.6%;
	margin-bottom: 20px;
	text-align: center;
	transition-duration: .5s;
	padding-top: 20px;
}

.pro .pro-item:nth-child(4n) {
	margin-right: 0;
}

.pro .pro-item:hover {
	box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.pro .pro-item:hover .pro-h5,
.pro .pro-item:hover .pro-more {
	color: #000;
}

.pro .txts-wrap {
	padding: 6px 10px 30px;
	font-size: 14px;
	line-height: 20px;
}

.pro .pro-h5 {
	font-size: 16px;
	line-height: 28px;
	color: #000;
	font-weight: bold;
	transition-duration: .5s;
}

.pro .pro-detail {
	color: #666;
	line-height: 20px;
	margin-bottom: 16px;
	font-size: 12px;
}

.pro .pro-more {
	font-size: 14px;
	color: #333;
	display: inline-block;
	text-decoration: underline;
}

.can-hover .img-wrap {
	overflow: hidden;
}

.can-hover .img-wrap .img100 {
	transition: all 1.5s ease;
}

.can-hover:hover .img-wrap .img100 {
	transform: scale3D(1.1, 1.1, 1.1);
}

/* 分页 */

.c-page {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: flex-start;
}

.c-page a {
	margin: 5px;
	display: block;
	min-width: 40px;
	padding:0 10px;
	line-height: 40px;
	font-size: 14px;
	text-align: center;
	color: #999;
	transition: .5s;
	background: #fff;
}

.c-page .prev,
.c-page .next {
	padding: 0 15px;
	width: auto;
}

.c-page a:hover,
.c-page a.active {
	color: #fff;
	background: #000;
}

/* 产品详情 */
.proInfo {
	padding: 30px 0;
	overflow: hidden;
}

.proInfo h1.title {
	height: 50px;
	line-height: 50px;
	font-size: 24px;
	font-weight: normal;
}

.proInfo .photo-left {
	width: 40%;
	float: left;
}

.proInfo .photo-left .pic-img {
	background: #fff;
}

.proInfo .photo-list {
	margin-top: 20px;
}

.proInfo .photo-list li {
	width: 16%;
	float: left;
	margin: 0 2%;
	border: 1px solid #f5f5f5
}

.proInfo .photo-list li.on {
	border-color: #000
}

.proInfo .info-right {
	width: 55%;
	float: right
}

.proInfo .info-right .sub-title {
	color: #666;
	margin-bottom: 20px;
}

.proInfo .info-right li {
	font-size: 16px;
	line-height: 20px;
	position: relative;
	padding:5px 0;
	
	min-height: 25px;
	clear:both;
}

.proInfo .info-right label {
	width: 25%;
	color: #999;
	float:left;
}

.proInfo .info-right  .value{
	width:74%;
	float:right;
}

.pro-datail {
	background: #fff;
}

.pro-datail .pc {
	display: block;
}

.pro-datail .phone {
	display: none;
}

/* 核心技术 */
.core-technology {
	padding: 30px 0;
	overflow: hidden
}

.yqh .buzhou {
	width: 100%;
	background: #f0f1f5;
	overflow: hidden;
	position: relative;
	padding-left: 20%;
}

.yqh .left-menu {
	width: 20%;
	height: 100%;
	float: left;
	background: #fff;
	position: absolute;
	left: 0;
	top: 0
}

.yqh .left-menu li {
	width: 100%;
	height: 33.33%;
	position: relative;
	display: flex;
	flex-direction: column;
	justify-content: center;
	padding-left: 20px;
}

.yqh .left-menu li.on {
	background: #333;
	color: #fff;
}

.yqh .left-menu li:after {
	content: "";
	width: 100%;
	height: 1px;
	background: #ddd;
	position: absolute;
	left: 0;
	bottom: 0;
}

.yqh .left-menu li::before {
	font-family: "iconfont" !important;
	content: "\e628";
	height: 100%;
	right: 10px;
	font-size: 20px;
	position: absolute;
	top: 0;
	display: flex;
	align-items: center
}

.yqh .left-menu li:last-child:after {
	display: none;
}

.yqh .left-menu li h4 {
	font-size: 18px;
}

.yqh .photo {
	width: 80%;
	float: right;
	padding: 30px 0
}

.accessories {
	margin-top: 20px;
	overflow: hidden;
	position: relative;
}

.accessories .left {
	width: 25%;
	height: 100%;
	float: left;
	background: url(../images/s_03.jpg) -10px center no-repeat;
	background-size: cover;
	position: absolute;
	left: 0;
	top: 0
}

.accessories .right {
	width: 75%;
	float: right;
}

/* 专注 */

#c-absorbed {
	padding: 90px 0;
	background: #fff;
}

#c-absorbed .c-list {
	
	margin: 0 -10px -20px;
	overflow:hidden;
}

#c-absorbed .c-list li {
	width:25%;
	margin-bottom: 20px;
	padding: 0 10px;
	float:left;
	text-align: center;
}

#c-absorbed .c-list .c-ico {
	margin: 0 auto 20px;
	width: 160px;
	height: 160px;
	border-radius: 50%;
	background: #eff1f5;
}

#c-absorbed .c-list .c-ico img {
	width: 100%;
	height: 100%;
}

#c-absorbed .c-list .c-title {
	font-size: 24px;
	line-height: 34px;
}

#c-absorbed .c-list .c-text {
	line-height: 26px;
	height:26px;
	color: #555;
	width:100%;

   /*
white-space:nowrap; 
overflow:hidden;
 text-overflow:ellipsis;   */
}

.yjys1 {
	background-color: #eff1f5;
}

.yjys2 {
	background-color: #fff;
}

.ys {
	padding: 60px 0;
	overflow: hidden;
}

.ys .left {
	width: 28%;
}

.ys .right {
	width: 40%;
	padding-top: 50px;
	height: 100%;
	display: flex;
	flex-direction: column;
	justify-content: center;
}

.ys h4 {
	font-size: 22px;
	margin-bottom: 30px;
}

.ys b {
	font-size: 18px;
	;
}

.ys p {
	font-size: 16px;
	margin-bottom: 30px;
}

.ys li {
	width: 33.33%;
	float: left;
	text-align: center;
}

.ys li i {
	margin: 10px auto;
	display: block;
	width: 120px;
	height: 120px;
	line-height: 120px;
	text-align: center;
	border: 2px solid #000;
	border-radius: 50%;
	font-style: normal;
	font-size: 24px;
	font-weight: bold;
}

.ys-video {
	overflow: hidden;
	position: relative;
	padding: 0 60px;
}

.ys-video #a1,
.ys-video #b1 {
	writing-mode: vertical-lr;
	background-color: #666;
	width: 60px;
	text-align: center;
	color: #fff;
	font-size: 24px;
	line-height: 60px;
	height: 100%;
	position: absolute;
	cursor: pointer;
}

.ys-video #a1 {
	left: 0;
	top: 0
}

.ys-video #b1 {
	right: 0;
	top: 0
}

.ys-video #a2,
.ys-video #b2 {
	width: 100%;
}

.ys-video #a2 video,
.ys-video #b2 video {
	width: 100%;
	display: block;
}

.ys-video #b2 {
	display: none;
}

.ys-video .on {
	background: #000 !important;
}

.xcx {
	padding: 30px 0;
	background: #fff;
	overflow: hidden;
}

.xcx li {
	width: 23%;
	float: left;
	margin-right: 2%;
	border-radius: 10px;
	
}
.xcx li img{border-radius: 10px;box-shadow:3px 3px 8px #ccc;}
/* 生产设备 */

#c-equipment {
	padding: 90px 0;
	background: #fff;
}

.c-banner3 {
	padding-bottom: 60px;
}

.c-banner3 .c-title2 {
	display: flex;
	align-items: flex-end;
	justify-content: center;
	position: absolute;
	top: 0;
	left: 0;
	z-index: 2;
	padding: 40px;
	width: 100%;
	height: 100%;
	font-size: 20px;
	line-height: 30px;
	text-align: center;
	color: #333;
	/* background: url(../images/hj-zz.png)repeat-x bottom left / auto; */
}

.c-banner3.c-dt .c-title2 {
	color: #fff;
}

.c-banner3 .swiper-slide img {
	width: 100%;

	object-fit: cover;
}

.c-banner3 .c-bottom-wrap {
	display: flex;
	align-items: flex-end;
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
}

.c-banner3 .c-bottom-wrap .swiper-pagination {
	position: relative;
	bottom: 0;
	width: 100px;
	font-style: italic;
	text-align: left;
	color: #999;
}

.c-banner3 .c-bottom-wrap .swiper-pagination-current {
	font-size: 30px;
	color: #333;
}

.c-banner3 .c-bottom-wrap .swiper-pagination-total {
	font-size: 14px;
}

.c-banner3 .c-bottom-wrap .c-btn-box {
	display: flex;
	align-items: flex-start;
	justify-content: flex-end;
	width: 130px;
}

.c-banner3 .c-bottom-wrap .c-btn-box .c-prev {
	width: 22px;
	height: 12px;
	background: url(../images/prev2.png)no-repeat left top / 100% auto;
	cursor: pointer;
}

.c-banner3 .c-bottom-wrap .c-btn-box .c-prev:hover {
	background-image: url(../images/prev2-h.png);
}

.c-banner3 .c-bottom-wrap .c-btn-box .c-next {
	margin: 0 30px 0 20px;
	width: 22px;
	height: 12px;
	background: url(../images/next2.png)no-repeat left top / 100% auto;
	cursor: pointer;
}

.c-banner3 .c-bottom-wrap .c-btn-box .c-next:hover {
	background-image: url(../images/next2-h.png);
}

.c-banner3 .c-bottom-wrap .c-btn-box .c-btn {
	width: 12px;
	height: 12px;
	background: url(../images/zt.png)no-repeat left top / 100% auto;
	cursor: pointer;
}

.c-banner3 .c-bottom-wrap .c-btn-box .c-btn.on {
	background-image: url(../images/bf.png);
}

.c-banner3 .c-bottom-wrap .c-line-box {
	position: relative;
	margin-bottom: 5px;
	width: -webkit-calc(100% - 230px);
	width: calc(100% - 230px);
	height: 1px;
	background: #dadada;
	overflow: hidden;
}

.c-banner3 .c-bottom-wrap .c-line-box .c-line {
	position: absolute;
	top: 0;
	left: 0;
	width: 0;
	height: 1px;
	background: #000;
}

/* 新闻动态 */
.news .news-list1 {
	padding-top: 30px;
	background: #f5f5f5;
	padding-bottom: 40px;
}

.news .news-list1 .c-container {
	justify-content: flex-start;
}

.news .news-item {
	flex: 0 0 32%;
	display: inline-block;
	width: 32%;
	background: #fff;
	margin-right: 2%;
	margin-bottom: 30px;
	transition-duration: .5s;
}

.news .news-item:nth-child(3n) {
	margin-right: 0;
}

.news .news-item:hover {
	box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
}

.news .news-item:hover .news-h5,
.news .news-item:hover .news-more {
	color: #d50a1d;
}

.omit1 {
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
}

.news .txts-wrap {
	padding: 30px 30px 30px 30px;
	font-size: 14px;
	line-height: 24px;
}

.news .news-h5 {
	font-size: 18px;
	line-height: 30px;
	color: #333;
	height: 30px;
	font-weight: bold;
	transition-duration: .5s;
}

.news .news-detail {
	color: #666;
	height: 48px;
	margin: 20px 0;
	
  overflow: hidden;
  text-overflow: ellipsis;
}

.news .news-more {
	color: #333;
	display: inline-block;
	text-decoration: underline;
}

/* 新闻详情 */
.newsInfo-list1 {
  overflow: hidden;
}
.newsInfo-list1 span {
  white-space: pre-wrap !important;
}
.newsInfo-list1 .list1-mains {
  flex: 0 0 59%;
  width: 59%;
  margin: auto;
  border-left: 1px solid #dbdbdb;
  border-right: 1px solid #dbdbdb; }
.newsInfo-list1 img {
  margin: 0 auto;
  display: block;
  max-width: 100%;
  height: auto !important; }
.newsInfo-list1 .info-title {
  font-size: 24px;
  line-height: 1.5;
  color: #000;
  text-align: center;
  padding-top: 48px; }
.newsInfo-list1 .info-dates {
  flex: 0 0 20%;
  font-size: 18px;
  line-height: 24px;
  color: #666;
  padding-top: 56px; }
.newsInfo-list1 .dates-s0 {
  position: relative;
  display: block;
  padding-left: 50px; }
  .newsInfo-list1 .dates-s0:before {
    content: "";
    display: block;
    position: absolute;
    left: 0;
    top: 12px;
    height: 1px;
    width: 40px;
    background: #dbdbdb; }
.newsInfo-list1 .list1-recommend {
  flex: 0 0 20%; }
.newsInfo-list1 .recommend-title {
  font-size: 18px;
  line-height: 1.5;
  color: #333;
  padding: 56px .9rem 0;
  margin-bottom: 14px; }
  .newsInfo-list1 .recommend-title:after {
    content: "";
    display: block;
    height: 1px;
    width: 1.2rem;
    margin-top: 10px;
    background: #dbdbdb; }
.newsInfo-list1 .recommend-mains {
  padding-left: .9rem; }
.newsInfo-list1 .recommend-item {
  position: relative;
  display: block;
  font-size: 16px;
  line-height: 26px;
  margin-bottom: 10px;
  color: #666;
  padding-left: 14px; }
  .newsInfo-list1 .recommend-item:before {
    content: "";
    display: block;
    position: absolute;
    left: 0;
    top: 11px;
    height: 4px;
    width: 4px;
    border-radius: 50%;
    background: #dbdbdb; }
.newsInfo-list1 .info-dt-wrap {
  font-size: 16px;
  line-height: 1.9;
  color: #666;
  border-bottom: 1px solid #dbdbdb;
  padding: 20px 30px;
  margin-bottom: 0px }
.newsInfo-list1 .info-bot-dl {
  width: 70%;
  color: #666;
  font-size: 16px;
  line-height: 36px; }
  .newsInfo-list1 .info-bot-dl a {
    color: #666; }
    .newsInfo-list1 .info-bot-dl a:hover {
      color: #000; }
.newsInfo-list1 .info-bot-dr {
  padding-top: 16px; }
.newsInfo-list1 .info-bot-wrap {
  padding: .9rem; }
.newsInfo-list1 .news-return-a {
  display: block;
  position: relative;
  text-align: center;
  width: 124px;
  height: 36px;
  border: 1px solid #000;
  border-radius: 18px;
  overflow: hidden; }
  .newsInfo-list1 .news-return-a:after {
    content: "";
    position: absolute;
    z-index: 0;
    background: #000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%; }
  .newsInfo-list1 .news-return-a:before {
    content: "";
    display: block;
    width: 130%;
    height: 100%;
    position: absolute;
    left: -144%;
    top: 0;
    z-index: 1;
    background: #fff;
    transition: .3s ease-in-out;
    -webkit-transition: .3s ease-in-out;
    transform: skewX(45deg);
    -webkit-transform: skewX(45deg);
    -moz-transform: skewX(45deg); }
  .newsInfo-list1 .news-return-a .load-s0 {
    position: relative;
    z-index: 2;
    color: #fff;
    font-size: 14px;
    line-height: 36px;
    transition: .3s ease-in-out; }
  .newsInfo-list1 .news-return-a:hover .load-s0 {
    color: #000; }
  .newsInfo-list1 .news-return-a:hover:before {
    left: -13%; }
	
	.m-search-box, .m-info-datas, .key .m-img {
	    display: none;
	}
	
	
	.moudle-titles {
	    font-size: 24px;
	    line-height: 1.2;
	    text-align: center;
	    color: #000;
	    padding:40px  20px;
	}

	/* 品牌运营 */
	.ppyy,.zlhz{padding:30px 0;overflow: hidden;}
	.ppyy ul li{width:48%;float: left;text-align: center;font-size: 18px;margin:0 1%;margin-bottom: 30px;}
	.ppyy ul li img{display:block;margin:0 auto;margin-bottom:20px;}
	
	/* 战略合作 */
	.zlhz li{width:16%;float: left;text-align: center;margin:0 2%;font-size: 18px;}
	.zlhz li img{display: block;margin:0 auto;margin-bottom: 20px;}

	/* 合作伙伴 */
	.hzhb {background:#fff;}
	.hzhb li{width:21%;float: left;text-align: center;margin:0 2%;font-size: 18px;}
	.hzhb li img{display: block;margin:0 auto;margin-bottom: 20px;}



	/* 技术支撑 */
	.jszc{background:#fff;padding:30px 0;overflow: hidden;}
	.jszc li{width:29.33%;float: left;text-align: center;margin:0 2%;font-size: 18px;}
	.jszc li img{display: block;margin:0 auto;margin-bottom: 20px;}
	
	/* 合作流程 */
	.hzlc{padding:30px 0;background:#fff;overflow:hidden;}
	.hzlc li{width:25%;text-align:center;float: left;text-align: center;font-size: 18px;position: relative;padding:0 50px}
	.hzlc li img{display: block;margin:0 auto;margin-bottom: 20px;}
	.hzlc li:after{content: "";position: absolute;right:0;top:0;width:45px;height:100%;background:url(../images/zsjm-16.jpg) right center no-repeat}
	.hzlc li:last-child:after{display: none;}
	
		
	
/* 分站首页 */
.questions {line-height:66px;}
.questions .hd{background:url(../images/fire_icon.png) left center no-repeat;padding-left:40px;float:left}
.questions .box{white-space:nowrap; overflow:hidden; text-overflow:ellipsis;}
.questions .box li{display:inline;position: relative;padding:0px 15px;}
.questions .box li::after{content: "";height:40%;position: absolute;top:30%;width:1px;right:0px;background:#ccc}
.questions .box li:last-child::after{display: none;}
.questions .box li a{color:#000}

.fz_about{background:#eeeeee;padding:80px 0}
.fz_about .title{text-align: center;}
.fz_about .title h2{font-size:28px;}
.fz_about .title p{color:#999}
.fz_about .title h3{font-size: 20px;margin:20px 0}

.fz_about .box1{background:#fff;overflow:hidden;text-align: center;}
.fz_about .box1 li{width:33.33%;float:left;padding:20px;line-height:30px;}

.fz_about  .box{overflow: hidden;position: relative;}
.fz_about .box2,.fz_about .box3{margin-top:40px;position: relative;}
.fz_about .box2 h3,.fz_about .box3 h3{font-size:24px;line-height:35px;}
.fz_about .box2 .l,.fz_about .box3 .l{width:25%;font-size:18px;display: flex;flex-direction:column; align-items:center;height:100%;justify-content:center;position: absolute;}
.fz_about .box2 .l h4,.fz_about .box3 .l h4{font-size:20px}
.fz_about .box2 .l p,.fz_about .box3 .l p{font-size:14px;}
.fz_about .box2 .r,.fz_about .box3 .r{width:70%;background:#fff;overflow:hidden;padding:10px;}
.fz_about .box2 .r img{width:23%;margin:0px 1%;display:block;float: left;}
.fz_about .box2 .l{left:0;top:0}
.fz_about .box3 .r li{width:31.33%;float: left;margin:0 1%;text-align: center;}
.fz_about .box3 h5{font-size:16px;margin-top:10px;}

/* 体验商中心 */
.joining{padding:30px 0;}
.joining .title{text-align: center;line-height:35px;}
.joining .title h3{font-size: 28px;}
.joining .box{margin-top:20px;text-align: center;}
	